home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / MacPerl 5.1.3 / Mac_Perl_513_src / perl5.002 / utils / perldoc.PL < prev    next >
Encoding:
Perl Script  |  1996-04-06  |  10.0 KB  |  395 lines  |  [TEXT/MPS ]

  1. #!/usr/local/bin/perl
  2.  
  3. use Config;
  4. use File::Basename qw(&basename &dirname);
  5.  
  6. # List explicitly here the variables you want Configure to
  7. # generate.  Metaconfig only looks for shell variables, so you
  8. # have to mention them as if they were shell variables, not
  9. # %Config entries.  Thus you write
  10. #  $startperl
  11. # to ensure Configure will look for $Config{startperl}.
  12.  
  13. # This forces PL files to create target in same directory as PL file.
  14. # This is so that make depend always knows where to find PL derivatives.
  15. chdir(dirname($0));
  16. ($file = basename($0)) =~ s/\.PL$//;
  17. $file =~ s/\.pl$//
  18.     if ($^O eq 'VMS' or $^O eq 'os2');  # "case-forgiving"
  19.  
  20. open OUT,">$file" or die "Can't create $file: $!";
  21.  
  22. print "Extracting $file (with variable substitutions)\n";
  23.  
  24. # In this section, perl variables will be expanded during extraction.
  25. # You can use $Config{...} to use Configure variables.
  26.  
  27. print OUT <<"!GROK!THIS!";
  28. $Config{'startperl'}
  29.     eval 'exec perl -S \$0 "\$@"'
  30.     if 0;
  31. !GROK!THIS!
  32.  
  33. # In the following, perl variables are not expanded during extraction.
  34.  
  35. print OUT <<'!NO!SUBS!';
  36.     eval 'exec perl -S $0 "$@"'
  37.     if 0;
  38.  
  39. #
  40. # Perldoc revision #1 -- look up a piece of documentation in .pod format that
  41. # is embedded in the perl installation tree.
  42. #
  43. # This is not to be confused with Tom Christianson's perlman, which is a
  44. # man replacement, written in perl. This perldoc is strictly for reading
  45. # the perl manuals, though it too is written in perl.
  46.  
  47. if(@ARGV<1) {
  48.     die <<EOF;
  49. Usage: $0 [-h] [-v] [-t] [-u] [-m] PageName|ModuleName|ProgramName
  50.  
  51. We suggest you use "perldoc perldoc" to get aquainted 
  52. with the system.
  53. EOF
  54. }
  55.  
  56. use Getopt::Std;
  57. $Is_VMS = $^O eq 'VMS';
  58.  
  59. sub usage{
  60.         warn "@_\n" if @_;
  61.     die <<EOF;
  62. perldoc [-h] [-v] [-u] PageName|ModuleName|ProgramName...
  63.     -h   Display this help message.
  64.     -t   Display pod using pod2text instead of pod2man and nroff.
  65.     -u     Display unformatted pod text
  66.     -m   Display modules file in its entirety
  67.     -v     Verbosely describe what's going on.
  68. PageName|ModuleName...
  69.          is the name of a piece of documentation that you want to look at. You 
  70.          may either give a descriptive name of the page (as in the case of
  71.          `perlfunc') the name of a module, either like `Term::Info', 
  72.          `Term/Info', the partial name of a module, like `info', or 
  73.          `makemaker', or the name of a program, like `perldoc'.
  74.          
  75. Any switches in the PERLDOC environment variable will be used before the 
  76. command line arguments.
  77.  
  78. EOF
  79. }
  80.  
  81. use Text::ParseWords;
  82.  
  83.  
  84. unshift(@ARGV,shellwords($ENV{"PERLDOC"}));
  85.  
  86. getopts("mhtuv") || usage;
  87.  
  88. usage if $opt_h || $opt_h; # avoid -w warning
  89.  
  90. usage("only one of -t, -u, or -m") if $opt_t + $opt_u + $opt_m > 1;
  91.  
  92. if ($opt_t) { require Pod::Text; import Pod::Text; }
  93.  
  94. @pages = @ARGV;
  95.  
  96. sub containspod {
  97.     my($file) = @_;
  98.     local($_);
  99.     open(TEST,"<$file");
  100.     while(<TEST>) {
  101.         if(/^=head/) {
  102.             close(TEST);
  103.             return 1;
  104.         }
  105.     }
  106.     close(TEST);
  107.     return 0;
  108. }
  109.  
  110.  sub minus_f_nocase {
  111.      my($file) = @_;
  112.      local *DIR;
  113.      local($")="/";
  114.      my(@p,$p,$cip);
  115.      foreach $p (split(/\//, $file)){
  116.     if ($Is_VMS and not scalar @p) {
  117.         # VMS filesystems don't begin at '/'
  118.         push(@p,$p);
  119.         next;
  120.     }
  121.      if (-d ("@p/$p")){
  122.          push @p, $p;
  123.      } elsif (-f ("@p/$p")) {
  124.          return "@p/$p";
  125.      } else {
  126.          my $found=0;
  127.          my $lcp = lc $p;
  128.          opendir DIR, "@p";
  129.          while ($cip=readdir(DIR)) {
  130.         $cip =~ s/\.dir$// if $Is_VMS;
  131.          if (lc $cip eq $lcp){
  132.              $found++;
  133.              last;
  134.          }
  135.          }
  136.          closedir DIR;
  137.          return "" unless $found;
  138.          push @p, $cip;
  139.          return "@p" if -f "@p";
  140.      }
  141.      }
  142.      return; # is not a file
  143.  }
  144.  
  145.   sub searchfor {
  146.       my($recurse,$s,@dirs) = @_;
  147.       $s =~ s!::!/!g;
  148.       $s = VMS::Filespec::unixify($s) if $Is_VMS;
  149.       printf STDERR "looking for $s in @dirs\n" if $opt_v;
  150.      my $ret;
  151.      my $i;
  152.      my $dir;
  153.       for ($i=0;$i<@dirs;$i++) {
  154.           $dir = $dirs[$i];
  155.           ($dir = VMS::Filespec::unixpath($dir)) =~ s!/$!! if $Is_VMS;
  156.          if ((    $ret = minus_f_nocase "$dir/$s.pod")
  157.          or ( $ret = minus_f_nocase "$dir/$s.pm"  and containspod($ret))
  158.          or ( $ret = minus_f_nocase "$dir/$s"     and containspod($ret))
  159.          or ( $Is_VMS and 
  160.               $ret = minus_f_nocase "$dir/$s.com" and containspod($ret))
  161.          or ( $ret = minus_f_nocase "$dir/pod/$s.pod")
  162.          or ( $ret = minus_f_nocase "$dir/pod/$s" and containspod($ret)))
  163.          { return $ret; }
  164.          
  165.          if($recurse) {
  166.             opendir(D,$dir);
  167.             my(@newdirs) = grep(-d,map("$dir/$_",grep(!/^\.\.?$/,readdir(D))));
  168.             closedir(D);
  169.             @newdirs = map((s/.dir$//,$_)[1],@newdirs) if $Is_VMS;
  170.             next unless @newdirs;
  171.             print STDERR "Also looking in @newdirs\n" if $opt_v;
  172.             push(@dirs,@newdirs);
  173.          }
  174.      }
  175.       return ();
  176.   }
  177.  
  178.  
  179. foreach (@pages) {
  180.     print STDERR "Searching for $_\n" if $opt_v;
  181.     # We must look both in @INC for library modules and in PATH
  182.     # for executables, like h2xs or perldoc itself.
  183.     @searchdirs = @INC;
  184.     unless ($opt_m) { 
  185.         if ($Is_VMS) {
  186.         my($i,$trn);
  187.         for ($i = 0; $trn = $ENV{'DCL$PATH'.$i}; $i++) {
  188.             push(@searchdirs,$trn);
  189.         }
  190.         } else {
  191.             push(@searchdirs, grep(-d, split(':', $ENV{'PATH'})));
  192.         }
  193.         @files= searchfor(0,$_,@searchdirs);
  194.     }
  195.     if( @files ) {
  196.         print STDERR "Found as @files\n" if $opt_v;
  197.     } else {
  198.         # no match, try recursive search
  199.         
  200.         @searchdirs = grep(!/^\.$/,@INC);
  201.         
  202.         
  203.         @files= searchfor(1,$_,@searchdirs);
  204.         if( @files ) {
  205.             print STDERR "Loosely found as @files\n" if $opt_v;
  206.         } else {
  207.             print STDERR "No documentation found for '$_'\n";
  208.         }
  209.     }
  210.     push(@found,@files);
  211. }
  212.  
  213. if(!@found) {
  214.     exit ($Is_VMS ? 98962 : 1);
  215. }
  216.  
  217. if( ! -t STDOUT ) { $opt_f = 1 }
  218.  
  219. unless($Is_VMS) {
  220.     $tmp = "/tmp/perldoc1.$$";
  221.     $goodresult = 0;
  222.     @pagers = qw( more less pg view cat );
  223.     unshift(@pagers,$ENV{PAGER}) if $ENV{PAGER};
  224. } else {
  225.     $tmp = 'Sys$Scratch:perldoc.tmp1_'.$$;
  226.     @pagers = qw( most more less type/page );
  227.     unshift(@pagers,$ENV{PERLDOC_PAGER}) if $ENV{PERLDOC_PAGER};
  228.     $goodresult = 1;
  229. }
  230.  
  231. if ($opt_m) {
  232.     foreach $pager (@pagers) {
  233.     my($sts) = system("$pager @found");
  234.     exit 0 if ($Is_VMS ? ($sts & 1) : !$sts);
  235.     }
  236.     exit $Is_VMS ? $sts : 1;
  237.  
  238. foreach (@found) {
  239.  
  240.     if($opt_t) {
  241.         open(TMP,">>$tmp");
  242.         Pod::Text::pod2text($_,*TMP);
  243.         close(TMP);
  244.     } elsif(not $opt_u) {
  245.         open(TMP,">>$tmp");
  246.         $rslt = `pod2man $_ | nroff -man`;
  247.         if ($Is_VMS) { $err = !($? % 2) || $rslt =~ /IVVERB/; }
  248.         else      { $err = $?; }
  249.         print TMP $rslt unless $err;
  250.         close TMP;
  251.     }
  252.                                                     
  253.     if( $opt_u or $err or -z $tmp) {
  254.         open(OUT,">>$tmp");
  255.         open(IN,"<$_");
  256.         $cut = 1;
  257.         while (<IN>) {
  258.             $cut = $1 eq 'cut' if /^=(\w+)/;
  259.             next if $cut;
  260.             print OUT;
  261.         }
  262.         close(IN);
  263.         close(OUT);
  264.     }
  265. }
  266.  
  267. if( $opt_f ) {
  268.     open(TMP,"<$tmp");
  269.     print while <TMP>;
  270.     close(TMP);
  271. } else {
  272.     foreach $pager (@pagers) {
  273.         $sts = system("$pager $tmp");
  274.         last if $Is_VMS && ($sts & 1);
  275.         last unless $sts;
  276.     }
  277. }
  278.  
  279. 1 while unlink($tmp); #Possibly pointless VMSism
  280.  
  281. exit 0;
  282.  
  283. __END__
  284.  
  285. =head1 NAME
  286.  
  287. perldoc - Look up Perl documentation in pod format.
  288.  
  289. =head1 SYNOPSIS
  290.  
  291. B<perldoc> [B<-h>] [B<-v>] [B<-t>] [B<-u>] PageName|ModuleName|ProgramName
  292.  
  293. =head1 DESCRIPTION
  294.  
  295. I<perldoc> looks up a piece of documentation in .pod format that is
  296. embedded in the perl installation tree or in a perl script, and displays
  297. it via pod2man | nroff -man | $PAGER.  This is primarily used for the
  298. documentation for the perl library modules. 
  299.  
  300. Your system may also have man pages installed for those modules, in
  301. which case you can probably just use the man(1) command.
  302.  
  303. =head1 OPTIONS
  304.  
  305. =over 5
  306.  
  307. =item B<-h> help
  308.  
  309. Prints out a brief help message.
  310.  
  311. =item B<-v> verbose
  312.  
  313. Describes search for the item in detail.
  314.  
  315. =item B<-t> text output
  316.  
  317. Display docs using plain text converter, instead of nroff. This may be faster,
  318. but it won't look as nice.
  319.  
  320. =item B<-u> unformatted
  321.  
  322. Find docs only; skip reformatting by pod2*
  323.  
  324. =item B<-m> module
  325.  
  326. Display the entire module: both code and unformatted pod documentation.
  327. This may be useful if the docs don't explain a function in the detail
  328. you need, and you'd like to inspect the code directly; perldoc will find
  329. the file for you and simply hand it off for display.
  330.  
  331. =item B<PageName|ModuleName|ProgramName>
  332.  
  333. The item you want to look up.  Nested modules (such as C<File::Basename>)
  334. are specified either as C<File::Basename> or C<File/Basename>.  You may also
  335. give a descriptive name of a page, such as C<perlfunc>. You make also give a
  336. partial or wrong-case name, such as "basename" for "File::Basename", but
  337. this will be slower, if there is more then one page with the same partial
  338. name, you will only get the first one.
  339.  
  340. =back
  341.  
  342. =head1 ENVIRONMENT
  343.  
  344. Any switches in the C<PERLDOC> environment variable will be used before the 
  345. command line arguments.  C<perldoc> also searches directories
  346. specified by the C<PERL5LIB> (or C<PERLLIB> if C<PERL5LIB> is not
  347. defined) and C<PATH> environment variables.
  348. (The latter is so that embedded pods for executables, such as
  349. C<perldoc> itself, are available.)
  350.  
  351. =head1 AUTHOR
  352.  
  353. Kenneth Albanowski <kjahds@kjahds.com>
  354.  
  355. Minor updates by Andy Dougherty <doughera@lafcol.lafayette.edu>
  356.  
  357. =head1 SEE ALSO
  358.  
  359. =head1 DIAGNOSTICS
  360.  
  361. =cut
  362.  
  363. #
  364. # Version 1.11: Tue Dec 26 09:54:33 EST 1995
  365. #       Kenneth Albanowski <kjahds@kjahds.com>
  366. #   -added Charles Bailey's further VMS patches, and -u switch
  367. #   -added -t switch, with pod2text support
  368. # Version 1.10: Thu Nov  9 07:23:47 EST 1995
  369. #        Kenneth Albanowski <kjahds@kjahds.com>
  370. #    -added VMS support
  371. #    -added better error recognition (on no found pages, just exit. On
  372. #     missing nroff/pod2man, just display raw pod.)
  373. #    -added recursive/case-insensitive matching (thanks, Andreas). This
  374. #     slows things down a bit, unfortunately. Give a precise name, and
  375. #     it'll run faster.
  376. #
  377. # Version 1.01:    Tue May 30 14:47:34 EDT 1995
  378. #        Andy Dougherty  <doughera@lafcol.lafayette.edu>
  379. #   -added pod documentation.
  380. #   -added PATH searching.
  381. #   -added searching pod/ subdirectory (mainly to pick up perlfunc.pod
  382. #    and friends.
  383. #
  384. #
  385. # TODO:
  386. #
  387. #    Cache directories read during sloppy match
  388. !NO!SUBS!
  389.  
  390. close OUT or die "Can't close $file: $!";
  391. chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
  392. exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
  393.